home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Messages / KeyMessage.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  290 b   |  23 lines  |  [TEXT/CWIE]

  1. // KeyMessage.h
  2.  
  3. #ifndef KeyMessage_h
  4. #define KeyMessage_h
  5.  
  6. #ifndef Integers_h
  7. #include "Integers.h"
  8. #endif
  9. #ifndef Key_h
  10. #include "Key.h"
  11. #endif
  12.  
  13. class KeyMessage
  14.   {
  15.     public:
  16.         virtual bool CanAppend() const;
  17.         virtual bool Append( Key );
  18.         
  19.         virtual void Send() const = 0;
  20.   };
  21.  
  22. #endif
  23.